home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / kernel / sources / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-25  |  1.2 KB  |  50 lines

  1. /*****************************************************************************
  2.   FILE           : version.h
  3.   SHORTNAME      : 
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : SNNS-Kernel: Current Version and Patchlevel
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Niels Mache 
  10.   DATE           : 15.08.9
  11.  
  12.   CHANGED BY     : Sven Doering
  13.   IDENTIFICATION : @(#)version.h    1.16 3/15/94
  14.   SCCS VERSION   : 1.16
  15.   LAST CHANGE    : 3/15/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19. ******************************************************************************/
  20. #ifndef VERSION_INCLUDE
  21. #define VERSION_INCLUDE
  22.  
  23. /*  define the current patchlevel
  24. */
  25. #define KERNEL_DATE    "09-08-1993"
  26. #define KERNEL_PATCH   "0"
  27.  
  28. #ifdef KERNEL3D
  29. #ifdef MASPAR_KERNEL
  30. #define  SNNS_VERSION   "SNNS MasPar 3D-Kernel V3.2 (Spontanous Warp Speed)"
  31. #else
  32. #define  SNNS_VERSION   "SNNS 3D-Kernel V3.2"
  33. #endif
  34. #else
  35. #ifdef MASPAR_KERNEL
  36. #define  SNNS_VERSION   "SNNS MasPar Kernel V3.2 (Spontanous Warp Speed)"
  37. #else
  38. #define  SNNS_VERSION   "SNNS Kernel V3.2"
  39. #endif
  40. #endif
  41.  
  42. /*  Version of I/O Manager  */
  43. #define NETFILE_VERSION  "V1.4"
  44. #define NETFILE_VERSION2  "V2.1"
  45.  
  46. /*  3D-Kernel Netfile Version  */
  47. #define KERNEL3D_NETFILE_VERSION  "-3D"
  48.  
  49. #endif
  50.